/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #e0f7fa, #80deea);
    color: #333;
}
/* Header */
.header {
    text-align: center;
    padding: 20px;
    background: #13a8b6;
    color: white;
    font-size: 28px;
    font-weight: bold;
}

/* Main Container */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}
/* Main Content */
.main-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}
.large-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.text-block {
    max-width: 600px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: justify;
}
/* Sidebar */
.sidebar {
    margin-bottom: 20px;
}
.sidebar img {
    max-width: 100%;
    border-radius: 10px;
}
/* Grid Layout */
.grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
}
.text-section, .image-section {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: justify;
}
.image-section img {
    max-width: 100%;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .grid-layout {
        grid-template-columns: 1fr;
    }
}
/* Responsive Video Container */
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px; /* Adjust this as needed */
    margin: auto;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
nav a{
    display: inline-block;
    color: black;
    text-decoration: none;
    padding: 20px 20px;
    transition-duration: 0.3s;
    margin-left: -5px;
}
nav a:hover{
    background-color: rgb(10, 96, 255);
    color: white;
}
nav a:active{
    background-color: brown;
    color: white;
}
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 20px auto; /* Adds spacing above and below */
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #b2ebf2, #4dd0e1); /* Softer gradient */
    color: #333;
}
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 40px auto; /* Increase spacing above and below */
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: 10px; /* Smooth rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow effect */
    background: #fff; /* Optional: background color */
    padding-bottom: 20px; /* Adds more space at the bottom */
}
